b72af485f625b734cecaa8556578890f346cd274,src/java/org/apache/cassandra/cql3/functions/Functions.java,Functions,isValidType,#Function#List#ColumnSpecification#,137
Before Change
private static boolean isValidType(Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver)
{
if (!receiver.type.equals(fun.returnType()))
return false;
if (providedArgs.size() != fun.argsType().size())
After Change
private static boolean isValidType(Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver)
{
if (!receiver.type.asCQL3Type().equals(fun.returnType().asCQL3Type()))
return false;
if (providedArgs.size() != fun.argsType().size())